import * as React from "react"; import { type SearchParams } from "@/types/table"; import { getValidFilters } from "@/lib/data-table"; import { Shell } from "@/components/shell"; import { Skeleton } from "@/components/ui/skeleton"; import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"; import { SearchParamsCache } from "@/lib/incoterms/validations"; import { getIncoterms } from "@/lib/incoterms/service"; import { IncotermsTable } from "@/lib/incoterms/table/incoterms-table"; import { InformationButton } from "@/components/information/information-button"; import { useTranslation } from "@/i18n" interface IndexPageProps { params: Promise<{ lng: string }> searchParams: Promise } interface IndexPageProps { params: Promise<{ lng: string }> searchParams: Promise } export default async function IndexPage(props: IndexPageProps) { const { lng } = await props.params const { t } = await useTranslation(lng, 'menu') const searchParams = await props.searchParams; const search = SearchParamsCache.parse(searchParams); const validFilters = getValidFilters(search.filters); const promises = Promise.all([ getIncoterms({ ...search, filters: validFilters, }), ]); return (

{t('menu.master_data.incoterms')}

{/*

인코텀즈(Incoterms)를 등록, 수정, 삭제할 수 있습니다.

*/}
}> } >
); }